home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / ld / testsuite / ld-srec / sr2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  181 b   |  19 lines

  1. /* This file is compiled and linked into the S-record format.  */
  2.  
  3. int e1;
  4. int e2 = 1;
  5.  
  6. int
  7. fn1 (s)
  8.      char *s;
  9. {
  10.   return s[e1];
  11. }
  12.  
  13. int
  14. fn2 (s)
  15.      char *s;
  16. {
  17.   return s[e2];
  18. }
  19.